-
Notifications
You must be signed in to change notification settings - Fork 800
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add/skip pricing page when connecting from editor blocks #39865
Add/skip pricing page when connecting from editor blocks #39865
Conversation
Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.
Interested in more tips and information?
|
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖 The e2e test report can be found here. Please note that it can take a few minutes after the e2e tests checks are complete for the report to be available. Follow this PR Review Process:
Still unsure? Reach out in #jetpack-developers for guidance! Jetpack plugin: The Jetpack plugin has different release cadences depending on the platform:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. |
73accdc
to
6dcbdf2
Compare
logo?: React.ReactNode; | ||
} | ||
|
||
const ConnectionScreenBody: FC< ConnectScreenProps > = props => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There were more changes on this page on a previous iteration, however this is still a typing improvement, so I think we can keep it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should handle that at some point tho, since keeping two different types is not very maintainable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, I was thinking during the TypeScript refactor project 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some nitpicks, but the functionality tests well.
autoTrigger: false, | ||
skipPricingPage: true, | ||
} ); | ||
const { autosave } = useAutosaveAndRedirect(); | ||
const { tracks } = useAnalytics(); | ||
|
||
const goToCheckoutPage = ( event: MouseEvent< HTMLButtonElement > ) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nitpick: I know the name of the prop is goToCheckoutPage
, but that's misleading in this scenario (especially after this change 😅 ). I think we could update at least the name of the method here.
// The redirection is handled this way to ensure we get the right redirectUri | ||
// In the case that the post is new and unsaved, the component requires a re-render | ||
// in order to get the correct URI when the handler is called. | ||
if ( isRedirecting ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another nitpick, this variable name could be something like isReadyToRedirect
or something like that. To me, calling an action (handleConnectuser
) when isRedirecting
is true
makes me think that it'll interrupt the redirect and do the other thing instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice workaround, btw 😅
5e40bbc
to
b33d9c7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Proposed changes:
skipPricingPage
prop to the useConnection hook that passes theskip_pricing
param to the connection pageOther information:
Jetpack product discussion
P2: pbNhbs-bQ3-p2
Does this pull request change what data or activity we track or use?
No
Testing instructions:
wp-admin/post-new.php
to create a new posthttps://wordpress.com/jetpack/connect/authorize
skip_pricing
query parameter exists in the URL